WPF and Silverlight Edition Basic Library > LayoutPanels > Layout Panels Quick Starts > DockPanel Quick Start |
The following quick start guide is intended to get you up and running with DockPanel for Silverlight. In this quick start, you'll create a new project in Visual Studio, and add elements docked on the top, bottom, left, right, or even fill the C1DockPanel.
To set up your project, complete the following steps:
New Project Dialog
- WPF: C1.WPF.4.dll
- Silverlight: C1.Silverlight.5.dll
In the next step, you'll add and style C1DockPanels.
In this step we'll add and style several C1DockPanels.
XAML Copy Code <Border c1:C1DockPanel.Dock="Top" Height="50" Background="Red"> <TextBlock Text="Top" /> </Border> <Border c1:C1DockPanel.Dock="Bottom" Height="50" Background="Blue"> <TextBlock Text="Bottom" /> </Border> <Border c1:C1DockPanel.Dock="Right" Width="50" Background="Yellow"> <TextBlock Text="Right" /> </Border> <Border c1:C1DockPanel.Dock="Left" Background="Green" Width="50" > <TextBlock Text="Left" /> </Border> <Border Background="White" > <TextBlock Text="Fill" /> </Border>
In the next step, you'll run the application.
Now you're ready to run the application. From the Debug menu, select Start Debugging. Your application will look similar to the following, with four C1DockPanels on the top, right, left, and bottom and the center block filled:
Congratulations! You have successfully completed the DockPanel for Silverlight quick start.